home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / CITIZEN.L2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  128 lines

  1. name Citizen F10 Screw machine
  2.  
  3. O >4
  4. N >3
  5. G >2
  6. X ->3.>4
  7. Z ->3.>4
  8. D >2
  9. I ->3.>4
  10. K ->3.>4
  11. U ->3.>4
  12. W ->3.>4
  13. P ->3.>4
  14. Q ->3.>4
  15. R ->3.>4
  16. F >3.>5
  17. T >2
  18. S >2
  19. M >2
  20.  
  21. ModalGs 0 1 2 3 4                     # List of g codes that are modal    
  22.  
  23. Sequence#s N 1 10 10                  # Char, freq, incr & start          
  24. First#? N                             # Y or N  'Output 1st sequence no.  
  25.  
  26. Comment ( )                           # Begin End comment char.           
  27.  
  28. HCode Z                               # X or X U  'Horizontal char.       
  29. VCode X                               # Y or Y V  'Vertical char.         
  30. FeedCode F                            # Feed rate char.                   
  31.  
  32. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  33. Coolant 52 53 52                      # On, Off & Mist m codes            
  34. SpeedType G 97 96                     # CSS and RPM g codes               
  35. FeedType G 95 94                      # IPR & IPM g codes                 
  36.  
  37. ByDiameter? Y                         # Y or N  'Output X val. by diameter
  38.  
  39. RevSigns Z K                          # List of letters to reverse signs
  40.  
  41. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  42. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  43.  
  44. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  45.  
  46. Inch/MM 20 21                         # Inch & Metric g codes             
  47.  
  48. CtrCode K I                           # I J or R or I J K L               
  49.  
  50. Feed G1                               # Linear move                       
  51. Rapid G0                              # Rapid positioning word            
  52. Cw G2                                 # Circular move clockwise           
  53. Ccw G3                                # Circular move counter clockwise   
  54.  
  55. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  56.  
  57.  
  58. Peck                                  # Pecking canned/manual cycle       
  59. none
  60. end
  61.  
  62. Tap                                   # Tapping canned/manual cycle       
  63. G84 Z[H] F[FRate]
  64. end
  65.  
  66. Ream                                  # Reaming canned/manual cycle       
  67. G85 Z[H] F[FRate]
  68. end
  69.  
  70. AutoThread                            # Automatic thread canned cycle     
  71. G33
  72. End
  73.  
  74. Bore                                  # Boring canned/manual cycle        
  75. G74 R0
  76. G74 Z[H] R[SClear] F[FRate]
  77. end
  78.  
  79. Cancel                                # Cancel a canned/manual cycle      
  80. G80
  81. end
  82.  
  83. StartCode                             # Start of the program              
  84. O[Program#]
  85. G0 G[Unitmode] G99 M6
  86. G69
  87. G50 X[-.06] Z0
  88. End
  89.  
  90. 1stToolChange                         # First tool change                 
  91. G[FeedType] G[SpeedType] M[Direct] S[Speed]
  92. G0 Z[SClear]
  93. T[Tool]
  94. G68
  95. M[Cool]
  96. G0 X[V] Z[SClear]
  97. T[Comp]
  98. End
  99.  
  100. Infeed                                # Enable cutter comp                
  101. G1 X[V] Z[H] D[Dcomp] F[FRate]
  102. end
  103.  
  104. Outfeed                               # Disable cutter comp               
  105. G1 X[V] Z[H]
  106. end
  107. Drill                                 # Drilling canned/manual cycle      
  108. G0 X[-1]
  109. G1 Z[H] U0 F[FRate]
  110. G0 Z[SClear] T0
  111. end
  112.  
  113. ToolChange                            # Secondary tool changes            
  114. T0
  115. T[Tool]
  116. G[FeedType] G[SpeedType] M[Direct] S[Speed]
  117. M[Cool]
  118. G0 Z[SClear]
  119. G68
  120. T[Comp]
  121. End
  122.  
  123. EndCode                               # End of the program                
  124. M7
  125. G0 X[-.06] Z0 T0
  126. M2
  127. End
  128.